home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir24 / paket61.zip / SCRIPTS@.EXE / HF.SCP < prev    next >
Text File  |  1994-08-15  |  2KB  |  72 lines

  1. **********************************************************************
  2. *                                HF.SCP
  3. *
  4. *  This Script is used with my PK-232 to set up HF Mode in that TNC.
  5. *  There are a few parameters that I want to set before commencing HF
  6. *  operations and this Script makes it easy - I don't have to remember all
  7. *  the changes, and I don't have to type them either!
  8. *
  9. *  For your use, even if you DO use a PK-232, check these things carefully
  10. *  because you might want to change a few of the values I use here.  The
  11. *  Script is included to demonstrate the technique, that's all!
  12. *
  13. *  I have included this Script to demonstrate sending lots of commands to
  14. *  the TNC.  You could have ALL your TNC parms included in a Script like
  15. *  this one.  Then if you accidentally RESET the TNC or if you have to
  16. *  remove the battery temporarily, or if you just want an easy way to
  17. *  reset all the parms you know work well for you, then you can just run
  18. *  this Script and they will all be restored!  Sort of like a TNC Backup.
  19. *
  20. *************************************************************************
  21. *
  22. * Start in Command Mode
  23. *
  24. b
  25. w 5,cmd:
  26. g bad
  27.  
  28. *
  29. *  Then send a command, and wait up to 5 seconds for the TNC's cmd: prompt
  30. *
  31. s VHF OFF
  32. w 5,cmd:
  33. g bad
  34.  
  35. s HBAUD 300
  36. w 5,cmd:
  37. g bad
  38.  
  39. s WIDE OFF
  40. w 5,cmd:
  41. g bad
  42.  
  43. s FRACK 6
  44. w 5,cmd:
  45. g bad
  46.  
  47. s TXDELAY 60
  48. w 5,cmd:
  49. g bad
  50.  
  51. s PACLEN 20
  52. w 5,cmd:
  53. g bad
  54.  
  55. s MAXFRAME 1
  56. w 5,cmd:
  57. g bad
  58.  
  59. s RESP 0
  60. w 5,cmd:
  61. g bad
  62.  
  63. s MONITOR 6
  64. w 5,cmd:
  65. g bad
  66.  
  67. r
  68.  
  69. :bad
  70. e Something has gone wrong!
  71. q
  72.